summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/impl[t]-foreign[t]-for-fundamental.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/impl[t]-foreign[t]-for-fundamental.rs')
-rw-r--r--src/test/ui/coherence/impl[t]-foreign[t]-for-fundamental.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/test/ui/coherence/impl[t]-foreign[t]-for-fundamental.rs b/src/test/ui/coherence/impl[t]-foreign[t]-for-fundamental.rs
new file mode 100644
index 000000000..79b5aa3fc
--- /dev/null
+++ b/src/test/ui/coherence/impl[t]-foreign[t]-for-fundamental.rs
@@ -0,0 +1,18 @@
+// compile-flags:--crate-name=test
+// aux-build:coherence_lib.rs
+
+extern crate coherence_lib as lib;
+use lib::*;
+use std::rc::Rc;
+
+struct Local;
+
+impl<T> Remote1<T> for Box<T> {
+ //~^ ERROR type parameter `T` must be used as the type parameter for some local type
+}
+
+impl<'a, A, B> Remote1<A> for &'a B {
+ //~^ ERROR type parameter `B` must be used as the type parameter for some local type
+}
+
+fn main() {}